home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 18
/
CU Amiga Magazine's Super CD-ROM 18 (1997)(EMAP Images)(GB)[!][issue 1998-01].iso
/
CUCD
/
Online
/
SANA2Meter
/
Source
/
debug.h
< prev
next >
Encoding:
Amiga (detected)
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-04-04
|
428 b
|
25 lines
#ifndef __DEBUG_H
#define __DEBUG_H
/*
** $VER: debug.h 1.0 (17 Jun 1995)
**
** convenient debuggung support
**
** (C) Copyright 1995 Marius Gröger
** All Rights Reserved
**
** $HISTORY:
**
** 17 Jun 1995 : 001.000 : created
*/
#if DEBUG != 0
extern void KPrintF(char *, ...), KGetChar(void);
# define d(x) do { KPrintF("%s:%s:%ld:",__FILE__,__FUNC__,__LINE__); KPrintF x; } while(0)
#else
# define d(x)
#endif
#endif